libpropc++ (for C++) 1.0
Template library for properties in C++ like this: widget.color = "red"; to change widget color. In class Widget use: prop::Property<Widget, Color, &Widget::set_color, &Widget::get_color> color; Supports binding properties together so that the values of several properties of different objects will be automatically synchronized to hold the same value. This library has its own signals (that is Observer Pattern from object oriented...